home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 May / Macworld (1998-05).dmg / Shareware World / Comms & Internet / ProTERM_1.2.5.Install / ProTERM Mac1.2.5 / Macros / Startup Rebuild < prev   
Text File  |  1997-01-22  |  367b  |  15 lines

  1. /**************************************
  2.   Adds Rebuild Command to Connect Menu
  3. **************************************/
  4.  
  5. FUNC startup()
  6. {
  7.  // Put the Rebuild Menu command in the Connect menu
  8.  IF (MM_LOOKUP("Connect:Rebuild Menu",0) == "") {
  9.     MM_CODE(MM_INSERT("Connect:%host%-<","Rebuild Menu",1),
  10.                       "cmd=menu call='#Sub:Host'");
  11.  }
  12.  RETURN;
  13. }
  14.  
  15.